From 5a82431fd9550f525a20d7e6eaf6ba61b7d1a0ff Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 16 Sep 2008 01:38:03 +0000 Subject: [PATCH] Undefined var error fix --- includes/filerepo/File.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filerepo/File.php b/includes/filerepo/File.php index 0bdede5420..29b63c69f0 100644 --- a/includes/filerepo/File.php +++ b/includes/filerepo/File.php @@ -517,7 +517,7 @@ abstract class File { if ( $height != -1 ) { $params['height'] = $height; } - return $this->transform( $params, $flags ); + return $this->transform( $params, 0 ); } /** -- 2.20.1